home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Crosscountry USA Photo Safari
/
Crosscountry USA Photo Safari.iso
/
Data
/
cc_base
/
pak00_16bit_f.pk3
/
commodity_viewer_truck.ac.p
< prev
next >
Wrap
Text File
|
2002-09-09
|
736b
|
26 lines
{
AnimationID = "gui/laptop/map_button/yellow_dot.pcx";
Hidden = FALSE;
ScriptID = script {
@updateTruck {
int x;
int y;
resid player_id;
player_id = ResPropGetResID(ResByName("Game"),"game_cur_player");
x = ResPropGetInt(player_id,"nav_truck_x");
y = ResPropGetInt(player_id,"nav_truck_y");
x *= ResPropGetInt(SELF, "x_scale_numerator");
x /= ResPropGetInt(SELF, "x_scale_denominator");
x += ResPropGetInt(SELF, "x_offset");
y *= ResPropGetInt(SELF, "y_scale_numerator");
y /= ResPropGetInt(SELF, "y_scale_denominator");
y += ResPropGetInt(SELF, "y_offset");
ActorSetMXMY(SELF, x * 1000, y * 1000);
}
};
}